.navbar {
    display: flex;
    justify-content: space-between; /* Distribute space between nav items */
    background-color: lightblue;
    padding: 10px;
}

.nav-item {
    margin: 5px;
    padding: 10px;
    background-color: white;
    border: 1px solid lightgray;
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column; /* Stack nav items vertically on smaller screens */
    }
}





/* .flex-container {
    border: #4CAF50 1px solid;
    flex-direction: row;
} */













